home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / SOUND.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-19  |  536 b   |  27 lines

  1. #ifndef SOUND_HPP
  2. #define SOUND_HPP
  3.  
  4. #include <immwave.hpp>
  5.  
  6. //**************************************************************************
  7. // Class:   Sound
  8. //                                                                         *
  9. // Purpose: Provide .wav file support to an application
  10. //**************************************************************************
  11. class Sound 
  12. {
  13. public:
  14.   Sound();
  15.   ~Sound();
  16.   void playSound(IString fileName);
  17.  
  18. protected:
  19.  
  20. private:
  21.   IMMWaveAudio *wavPlayer;
  22. };
  23.  
  24. #endif
  25.  
  26.  
  27.